home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / test_netrc.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  2KB  |  50 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. import netrc
  5. import os
  6. import unittest
  7. import sys
  8. from test import test_support
  9. TEST_NETRC = '\nmachine foo login log1 password pass1 account acct1\n\nmacdef macro1\nline1\nline2\n\nmacdef macro2\nline3\nline4\n\ndefault login log2 password pass2\n\n'
  10. temp_filename = test_support.TESTFN
  11.  
  12. class NetrcTestCase(unittest.TestCase):
  13.     
  14.     def setUp(self):
  15.         mode = 'w'
  16.         if sys.platform not in [
  17.             'cygwin']:
  18.             mode += 't'
  19.         
  20.         fp = open(temp_filename, mode)
  21.         fp.write(TEST_NETRC)
  22.         fp.close()
  23.         self.netrc = netrc.netrc(temp_filename)
  24.  
  25.     
  26.     def tearDown(self):
  27.         del self.netrc
  28.         os.unlink(temp_filename)
  29.  
  30.     
  31.     def test_case_1(self):
  32.         self.assert_(self.netrc.macros == {
  33.             'macro1': [
  34.                 'line1\n',
  35.                 'line2\n'],
  36.             'macro2': [
  37.                 'line3\n',
  38.                 'line4\n'] })
  39.         self.assert_(self.netrc.hosts['foo'] == ('log1', 'acct1', 'pass1'))
  40.         self.assert_(self.netrc.hosts['default'] == ('log2', None, 'pass2'))
  41.  
  42.  
  43.  
  44. def test_main():
  45.     test_support.run_unittest(NetrcTestCase)
  46.  
  47. if __name__ == '__main__':
  48.     test_main()
  49.  
  50.